home *** CD-ROM | disk | FTP | other *** search
/ Visual Basic Source Code / Visual Basic Source Code.iso / vbsource / filbx2 / progmenu.frm < prev    next >
Text File  |  1995-05-08  |  2KB  |  70 lines

  1. VERSION 2.00
  2. Begin Form ProgMenu 
  3.    Caption         =   "Your Nifty Program Goes Here"
  4.    ClientHeight    =   3615
  5.    ClientLeft      =   1095
  6.    ClientTop       =   1740
  7.    ClientWidth     =   7830
  8.    Height          =   4305
  9.    Icon            =   PROGMENU.FRX:0000
  10.    Left            =   1035
  11.    LinkMode        =   1  'Source
  12.    LinkTopic       =   "Form1"
  13.    ScaleHeight     =   3615
  14.    ScaleWidth      =   7830
  15.    Top             =   1110
  16.    Width           =   7950
  17.    Begin Label Label2 
  18.       BorderStyle     =   1  'Fixed Single
  19.       Caption         =   """None"""
  20.       Height          =   260
  21.       Left            =   1080
  22.       TabIndex        =   1
  23.       Top             =   1440
  24.       Width           =   4935
  25.    End
  26.    Begin Label Label1 
  27.       Alignment       =   2  'Center
  28.       BorderStyle     =   1  'Fixed Single
  29.       Caption         =   "Full pathname of file selected"
  30.       Height          =   260
  31.       Left            =   1800
  32.       TabIndex        =   0
  33.       Top             =   1080
  34.       Width           =   3375
  35.    End
  36.    Begin Menu file_menu 
  37.       Caption         =   "&File"
  38.       Begin Menu chooser 
  39.          Caption         =   "&Open File..."
  40.       End
  41.       Begin Menu say_by_by 
  42.          Caption         =   "E&xit"
  43.       End
  44.    End
  45.    Begin Menu tell_me_tell_me_do 
  46.       Caption         =   "&About"
  47.    End
  48. End
  49. Sub chooser_Click ()
  50.    filebox.Show 1
  51. End Sub
  52.  
  53. Sub Form_GotFocus ()
  54.     label2.caption = WorkFile
  55. End Sub
  56.  
  57. Sub Form_Load ()
  58.     CRLF = Chr$(13) + Chr$(10)
  59.  
  60. End Sub
  61.  
  62. Sub say_by_by_Click ()
  63.    End
  64. End Sub
  65.  
  66. Sub tell_me_tell_me_do_Click ()
  67.    about.Show
  68. End Sub
  69.  
  70.